/*** this file adds additional style for the Markov chain app and other that use matrix input and output */


td:first-child  {  /* make room for the brackets */
    margin-left: 1em;
}

td:last-child  {   /* make room for the brackets */
    margin-right: 3em;
}
    
table {     /* puts in the matrix brackets */
    padding-right: 10px;
    padding-left : 10px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-top-left-radius: 0.4em;
    border-top-right-radius: 0.4em;
    border-bottom-left-radius: 0.4em;
    border-bottom-right-radius: 0.4em;
}

td {        /* style for the cells in the output matrix for the Markov Chains app */
    text-align : center;
    font-size : 14px;
    font-weight: bold;
    background-color: antiquewhite;
}


/* These are for the radio buttons in columns for the Markov Chains app */

table.ttb {
    text-align : left;
    border-left: none;
    padding-right: 0px;
    padding-left : 10px;
    border-right: none;
    border-collapse: collapse;
}

table.ttb th {
    font-weight: normal;
}

td.tlj {     
    background-color : white;
    margin : none;
    padding : none;
    width : 13%;
    text-align : left;
    font-weight: normal;
    font-size : 15px;
}

td.tlempty {
    width : 3%;
    background-color: white;
}




